Getting Started

Please make sure you read and installed all the projects as described in the Installing section.

For all the scenarios in this document, keep the backend runserver running in one terminal (port 8000).

Getting Started with Frontend

Open an additional terminal and run the frontend runserver (port 8001). You would need to run gulp to build the assets, we recommend you should open a third terminal and ask gulp to watch the files and rebuild them if they change. You usually do this by running:

gulp build && gulp watch

Next, we would need to have the socket server running, we recommend you should open a forth terminal and run:

cd cla_socketserver
node app.js

If you have any trouble, please read the documentation on github .

To recap, you should now have 4 open terminals in the following state:

  1. backend runserver running on port 8000
  2. frontend runserver running on port 8001
  3. gulp watching files
  4. socket server running

You can now go to http://localhost:8001 and you’ll see a login page which allows you to log in either as an operator or as a specialist. The backend fixtures contain test access data that you can use.

Getting Started with Public

Not implemented yet